module Base
{

    /************************ Marks if parts have been spawned or not ************************/
	/* Used instead of moddata so it resets if you ever uninstall and reinstall the mod      */
	
    item EnginePartInitMarker
    {
        DisplayCategory = VehicleMaintenance,
        Weight	=	2.0,
        Type	=	Normal,
        DisplayName	= EnginePartInitMarker,
        Icon = EngineParts,
        VehicleType =   1,
        ConditionMax = 100,
        ChanceToSpawnDamaged = 30,
        MechanicsItem = TRUE,
        WorldStaticModel = EngineParts,
		Tags = EnginePartInitMarker,
    }		


	
    item BottleATF
    {
        DisplayCategory = VehicleMaintenance,
        Weight	=	0.2,
        Type	=	Normal,
        DisplayName	= ATF,
        Icon = engineparts/atf,
        ConditionMax = 100,
        ChanceToSpawnDamaged = 30,
        MechanicsItem = TRUE,
        WorldStaticModel = EngineATF,
		Tags = EnginePartFluid,
        component FluidContainer
        	{
            	ContainerName   = BottleATF,
            	capacity        = 1.0,
            	Fluids
            		{
                	fluid = ATF:1.0,
            		}
        	}		
    }		
    item BottleMotorOil
    {
        DisplayCategory = VehicleMaintenance,
        Weight	=	0.2,
        Type	=	Normal,
        DisplayName	= Motor Oil,
        Icon = engineparts/motoroil,
        ConditionMax = 100,
        ChanceToSpawnDamaged = 30,
        MechanicsItem = TRUE,
        WorldStaticModel = EngineMotorOil,
		Tags = EnginePartFluid,
        component FluidContainer
        	{
            	ContainerName   = Motoroil,
            	capacity        = 4.0,
            	Fluids
            		{
                	fluid = MotorOil:4.0,
            		}
        	}		
    }	
    item BottleMotorOilCan
    {
        DisplayCategory = VehicleMaintenance,
        Weight	=	0.5,
        Type	=	Normal,
        DisplayName	= Motor Oil Can,
        Icon = engineparts/motoroilcan,
        ConditionMax = 100,
        ChanceToSpawnDamaged = 30,
        MechanicsItem = TRUE,
        WorldStaticModel = EngineMotorOilCan,
		Tags = EnginePartFluid,
        component FluidContainer
        	{
            	ContainerName   = MotoroilCan,
            	capacity        = 10.0,
            	Fluids
            		{
                	fluid = MotorOil:10.0,
            		}
        	}		
    }	
    item BottleAntifreeze1
    {
        DisplayCategory = VehicleMaintenance,
        Weight	=	0.2,
        Type	=	Normal,
        DisplayName	= Antifreeze,
        Icon = engineparts/antifreezeY,
        ConditionMax = 100,
        ChanceToSpawnDamaged = 30,
        MechanicsItem = TRUE,
        WorldStaticModel = EngineAntifreezeY,
		Tags = EnginePartFluid,
        component FluidContainer
        	{
            	ContainerName   = Antifreeze,
            	capacity        = 4.0,
            	Fluids
            		{
                	fluid = Antifreeze:4.0,
            		}
        	}		
    }		
    item BottleAntifreeze2
    {
        DisplayCategory = VehicleMaintenance,
        Weight	=	0.2,
        Type	=	Normal,
        DisplayName	= Antifreeze,
        Icon = engineparts/antifreezeW,
        ConditionMax = 100,
        ChanceToSpawnDamaged = 30,
        MechanicsItem = TRUE,
        WorldStaticModel = EngineAntifreezeW,
		Tags = EnginePartFluid,
        component FluidContainer
        	{
            	ContainerName   = Antifreeze,
            	capacity        = 4.0,
            	Fluids
            		{
                	fluid = Antifreeze:4.0,
            		}
        	}		
    }	
    item ToolKit
    {
        DisplayCategory = VehicleMaintenance,
        Weight	=	1.0,
        Type	=	Normal,
        DisplayName	= Tool Kit,
        Icon = engineparts/toolkit,
        ConditionMax = 100,
        ChanceToSpawnDamaged = 30,
        MechanicsItem = TRUE,
        WorldStaticModel = EngineToolKit,
	Tags = EngineToolkit;Pliers;Screwdriver;Wrench,
	Tooltip = Tooltip_ToolKit,
    }	
	
}